home *** CD-ROM | disk | FTP | other *** search
- /****i* SOURCE_FILE/INFO
- *
- * NAME
- * NET.js
- *
- * USAGE
- * Part of Netobjects JavaScript Library.
- *
- * COPYRIGHT
- * Copyright ⌐ 2000-2005 Website Pros, Inc.
- * All Rights Reserved.
- *
- * This is an unpublished work protected by Website Pros, Inc.
- * as a trade secret, and is not to be used or disclosed except as
- * expressly provided in a written license agreement executed by
- * you and Website Pros, Inc.
- *
- * <copyright@websitepros.com>
- *
- * NOTES
- * JavaScript code.
- *
- *****/
-
- if (!IS_isModuleInitialized("IS.NOF.NET"))
- {
-
- /****h* NOF_JavaScript_Library/NOF.NET
- *
- * NAME
- * NOF.NET
- *
- * DESCRIPTION
- *
- * Namespace for the NET package
- *
- ****/
- function NET() {
- this.__proto__ = NET.prototype;
- this.type = IS.TYPE_NAMESPACE;
- }
-
- // add NET namespace to NOF namespace
- NOF.__proto__.NET = new NET();
- }
- var NET = NOF.NET;